
digraph "Server_Structure" {
rankdir = "TB"

subgraph cluster_0 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"seatle" [
		label = "seattle.wikia.com"
		color = "black"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Squid Cache";
	}

subgraph cluster_1 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"web" [
		label = "juno.wikia.com\ndover.wikia.com\nsydney.wikia.com\nfrankfurt.wikia.com"
		color = "blue"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
                orentation = 90
	]
		label = "Webserver";
		comment = "juno.wikia.com|ursula.bomis.com|207.142.131.223"
	}

subgraph cluster_2 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"ross" [
		label = "ross.wikia.com"
		color = "darkgreen"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Mailing Lists";
	}

subgraph cluster_3 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"brussels" [
		label = "Paris.wikia.com"
		color = "red"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Database";
	}
subgraph storage_cluster {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"juno" [
		label = "Geneva.wikia.com"
		color = "red"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Storage";
	}

label = "Server structure 09/17/2005";

"internet" -> "seatle"
"internet" -> "ross"
"seatle" -> "web" -> "db_cluster"
"web" -> "storage_cluster"
}

